993de5fd909fa247908feba587cd53a9a5b626dc,rt/frontend/jaxrs/src/main/java/org/apache/cxf/jaxrs/ext/codegen/SourceGenerator.java,SourceGenerator,writeRequestTypes,#List#List#StringBuilder#Set#Set#GrammarInfo#boolean#,445

Before Change


            String name = paramEl.getAttribute("name");
            Class<?> paramAnnotation = form ? FormParam.class 
                : PARAM_ANNOTATIONS.get(paramEl.getAttribute("style"));
            writeAnnotation(sbCode, imports, paramAnnotation, name, false, false);
            String type = getPrimitiveType(paramEl);
            if (Boolean.valueOf(paramEl.getAttribute("repeating"))) {
                addImport(imports, List.class.getName());

After Change


            Element paramEl = inParamEls.get(i);

            String name = paramEl.getAttribute("name");
            if (writeAnnotations(interfaceIsGenerated)) {
                Class<?> paramAnnotation = form ? FormParam.class 
                    : PARAM_ANNOTATIONS.get(paramEl.getAttribute("style"));
                writeAnnotation(sbCode, imports, paramAnnotation, name, false, false);
                sbCode.append(" ");
            }
            String type = getPrimitiveType(paramEl);